home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue66
/
SQLComp
/
DMSQLBDEReg.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2000-09-20
|
194 b
|
18 lines
unit DMSQLBDEReg;
interface
procedure Register;
implementation
uses
Classes, DMSQLBDE;
procedure Register;
begin
RegisterComponents('DMSQL', [TDMSQLQuery]);
end;
end.